b61919d8f5de9a4cf968770d133293a8774269fc,hystrix-core/src/main/java/com/netflix/hystrix/HystrixThreadPool.java,HystrixThreadPoolDefault,HystrixThreadPoolDefault,#HystrixThreadPoolKey#HystrixThreadPoolProperties.Setter#,171
Before Change
this.queueSize = properties.maxQueueSize().get();
this.queue = concurrencyStrategy.getBlockingQueue(queueSize);
if (properties.getAllowMaximumSizeToDivergeFromCoreSize()) {
this.metrics = HystrixThreadPoolMetrics.getInstance(threadPoolKey,
concurrencyStrategy.getThreadPool(threadPoolKey, properties.coreSize(), properties.maximumSize(), properties.keepAliveTimeMinutes(), TimeUnit.MINUTES, queue),
properties);
After Change
this.queueSize = properties.maxQueueSize().get();
this.queue = concurrencyStrategy.getBlockingQueue(queueSize);
if (properties.getAllowMaximumSizeToDivergeFromCoreSize().get()) {
this.metrics = HystrixThreadPoolMetrics.getInstance(threadPoolKey,
concurrencyStrategy.getThreadPool(threadPoolKey, properties.coreSize(), properties.maximumSize(), properties.keepAliveTimeMinutes(), TimeUnit.MINUTES, queue),
properties);